.about-playground-section {
    background-color: #f1f1f1;
    color: #000000;
    padding: 100px 0 150px 0;
    overflow: hidden;
    position: relative;
    font-family: 'Inter', sans-serif;
}
.playground-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 40px;
}
.playground-title {
    grid-column: 1;
    grid-row: 1;
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-transform: capitalize;
}
.playground-title span {
    display: inline-block;
    transform: rotate(45deg);
    margin-left: 5px;
}
.playground-content-block {
    grid-column: 2;
    grid-row: 1;
    padding-left: 30px;
    border-left: 1px solid var(--primary-color);
    max-width: 500px;
    justify-self: end;
}
.playground-content-block p {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
    margin: 0;
    color: #333;
}
.playground-bg-branding {
    position: absolute;
    bottom: -100px;
    left: -50px;
    z-index: 1;
    font-size: 45vw;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 0.7;
    letter-spacing: -1.5vw;
    pointer-events: none;
    text-transform: uppercase;
}
.playground-image-primary {
    grid-column: 1;
    grid-row: 2;
    position: relative;
    z-index: 2;
    width: 400px;
    height: 300px;
    margin-top: 50px;
    box-shadow: 20px 20px 80px rgba(0, 0, 0, 0.1);
}
.playground-image-secondary {
    grid-column: 2;
    grid-row: 2;
    position: absolute;
    right: 20%;
    bottom: -50px;
    z-index: 3;
    width: 250px;
    height: 350px;
    box-shadow: -20px 20px 80px rgba(0, 0, 0, 0.15);
}
.playground-image-primary img,
.playground-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 1200px) {
    .playground-container {
        padding: 0 40px;
    }
    .playground-bg-branding {
        bottom: -50px;
    }
    .playground-image-primary {
        width: 35vw;
    }
    .playground-image-secondary {
        width: 20vw;
        right: 10%;
    }
}
@media (max-width: 768px) {
    .about-playground-section {
        padding: 60px 0;
    }
    .playground-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 30px;
        padding: 0 20px;
    }
    .playground-content-block {
        justify-self: start;
        padding-left: 20px;
        max-width: 100%;
        border-left: 2px solid var(--primary-color);
    }
    .playground-bg-branding {
        font-size: 60vw;
        bottom: 0;
        opacity: 0.2;
    }
    .playground-image-primary {
        display: none;
        width: 100%;
        height: 250px;
        margin-top: 20px;
    }
    .playground-image-secondary {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        height: 300px;
        margin-top: 20px;
    }
}
